home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / Caml Light 0.7 / examples / demonstr / lexuniv.mli < prev    next >
Encoding:
Text File  |  1995-06-01  |  155 b   |  7 lines  |  [TEXT/MPS ]

  1. type lexème =
  2.      MC of string
  3.    | Ident of string
  4.    | Entier of int;;
  5. value construire_analyseur:
  6.      string list -> (char stream -> lexème stream);;
  7.